home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / comm2 / amicnnct.lha / Amiconnect / Install_Amiconnect2 < prev    next >
Text File  |  1995-11-19  |  22KB  |  809 lines

  1. ;Installer V1 For Amiconnect V3
  2. ;$VER: Amiconnect Installer V3 (181195)
  3. ;©Martin Hunt 1995
  4. ;
  5. ;
  6.  
  7. (set amitcpdir
  8.    (askdir
  9.        (prompt "Where is AmiTCP installed?")
  10.        (help @askdir-help)
  11.        (default "dh1:amitcp")
  12.    )
  13. )
  14.  
  15. (makeassign "amitcp" amitcpdir
  16.  (safe)
  17. )
  18.  
  19. (set acdest
  20.    (askdir
  21.        (prompt "Where do you want Amiconnect to be installed?")
  22.        (help @askdir-help)
  23.        (default "amitcp:bin")
  24.    )
  25. )
  26. (set @default-dest acdest)
  27. (makeassign "ac" acdest
  28. (safe)
  29. )
  30.  
  31. (copyfiles
  32.    (prompt "Copying Amiconnect to " acdest )
  33.    (help @copyfiles-help)
  34.    (source "mainprogram")
  35.    (dest acdest)
  36.    (all)
  37.    (infos)
  38.    (confirm)
  39. )
  40.  
  41. (makedir "amitcp:docs"
  42.   (infos)
  43.   (safe)
  44. )
  45.  
  46. (set docdest
  47.    (askdir
  48.        (prompt "Where do you want Amiconnects Doc File to be installed?")
  49.        (help @askdir-help)
  50.        (default "amitcp:docs")
  51.    )
  52. )
  53.  
  54. (copyfiles
  55.    (prompt "Copying Amiconnect Docs to " docdest )
  56.    (help @copyfiles-help)
  57.    (source "docs/amiconnect.guide")
  58.    (dest docdest)
  59.    (infos)
  60.    (confirm)
  61. )
  62.  
  63. (copyfiles
  64.    (prompt "Copying Amiconnect Docs to amitcp:docs")
  65.    (help @copyfiles-help)
  66.    (source "docs/amiconnect.guide")
  67.    (dest "amitcp:docs")
  68.    (infos)
  69. )
  70.  
  71. (set installnews
  72.   (askbool
  73.      (default 1)
  74.      (prompt "Do you wish to install a new postnews script\nso that GRn can postnews.\nThis script will also allow GRn and other newseditors\nto use Newsed's group signature option.")
  75.      (help @ask-bool)
  76.   )
  77. )
  78.  
  79. (if (= installnews 1)
  80.     (  ( set whichpostnews
  81.            (askbool
  82.              (default 0)
  83.              (prompt "Are you a Demon Internet subscriber?")
  84.              (help "Does you email address end in .demon.co.uk?\nIf it does select Yes else select No")
  85.            )
  86.        )
  87.        (if (= whichpostnews 0)
  88.            (  (copyfiles
  89.                   (prompt "Copying PostNews to Amitcp:bin ")
  90.                   (help @copyfiles-help)
  91.                   (source "amitcp/bin/postnews.nntpput")
  92.                   (dest "amitcp:bin")
  93.                   (newname "postnews")
  94.                   (confirm)
  95.               )
  96.               (copyfiles
  97.                   (prompt "Copying NNTP Put to Amitcp:bin ")
  98.                   (help @copyfiles-help)
  99.                   (source "amitcp/bin/nntpput")
  100.                   (dest "amitcp:bin")
  101.                   (confirm)
  102.               )
  103.               (copyfiles
  104.                   (prompt "Copying Sendnews to Amitcp:bin ")
  105.                   (help @copyfiles-help)
  106.                   (source "amitcp/bin/sendnews")
  107.                   (dest "amitcp:bin")
  108.                   (confirm)
  109.               )
  110.  
  111.            )
  112.            (copyfiles
  113.                   (prompt "Copying PostNews to Amitcp:bin ")
  114.                   (help @copyfiles-help)
  115.                   (source "amitcp/bin/postnews.demon")
  116.                   (dest "amitcp:bin")
  117.                   (newname "postnews")
  118.                   (confirm)
  119.            )
  120.  
  121.        )
  122.        (copyfiles
  123.               (prompt "Copying Common News Stuff to Amitcp:bin ")
  124.               (help @copyfiles-help)
  125.               (source "amitcp/bin/all")
  126.               (dest "amitcp:bin")
  127.               (all)
  128.               (confirm)
  129.        )
  130.  
  131.     )
  132.     (set fo 0)
  133. )
  134.  
  135. (set installmail
  136.   (askbool
  137.      (default 1)
  138.      (prompt "Do you wish to install the mail daemon \nso that you can receive incoming mail")
  139.      (help @ask-bool)
  140.   )
  141. )
  142. (if (= installmail 1)
  143.     (
  144.       (copyfiles
  145.         (prompt "Copying Mail Server to Amitcp:serv ")
  146.         (help @copyfiles-help)
  147.         (source "amitcp/serv")
  148.         (all)
  149.         (dest "amitcp:serv")
  150.         (infos)
  151.         (confirm)
  152.       )
  153.  
  154.       (copyfiles
  155.          (prompt "Copying Mail Server Inetd Entry to t: ")
  156.          (help @copyfiles-help)
  157.          (source "amitcp/db/inetd.conf.add")
  158.          (dest "t:")
  159.          (infos)
  160.       )
  161.  
  162.       (run "type t:inetd.conf.add >> amitcp:db/inetd.conf")
  163.     )
  164. )
  165. (copylib
  166.    (prompt "Copying Apig.Library to Libs:" )
  167.    (help @copyfiles-help)
  168.    (source "Libs/apig.library")
  169.    (dest "Libs:")
  170.    (infos)
  171.    (confirm)
  172. )
  173.  
  174. (copylib
  175.    (prompt "Copying Rexxserdev.Library to Libs:" )
  176.    (help @copyfiles-help)
  177.    (source "Libs/rexxserdev.library")
  178.    (dest "Libs:")
  179.    (infos)
  180.    (confirm)
  181. )
  182.  
  183. (copylib
  184.    (prompt "Copying Rexxreqtools.Library to Libs:" )
  185.    (help @copyfiles-help)
  186.    (source "Libs/rexxreqtools.library")
  187.    (dest "Libs:")
  188.    (infos)
  189.    (confirm)
  190. )
  191.  
  192. (copylib
  193.    (prompt "Copying Rexxsupport.Library to Libs:" )
  194.    (help @copyfiles-help)
  195.    (source "Libs/rexxsupport.library")
  196.    (dest "Libs:")
  197.    (infos)
  198.    (confirm)
  199. )
  200.  
  201. (makedir "amitcp:usr"
  202.   (infos)
  203.   (safe)
  204. )
  205. (makedir "amitcp:usr/mail"
  206.   (infos)
  207.   (safe)
  208. )
  209. (makedir "amitcp:usr/news"
  210.   (infos)
  211.   (safe)
  212. )
  213. (makedir "amitcp:usr/spool"
  214.   (infos)
  215.   (safe)
  216. )
  217. (makedir "amitcp:usr/lib"
  218.   (infos)
  219.   (safe)
  220. )
  221.  
  222. (message "I now need to setup your \nusr,news,mail,spool and lib directories\nIf this is your first AmiTCP setup\n just use the defaults\nif not specify your current directories" (SAFE))
  223.  
  224. (set usrdir
  225.    (askdir
  226.        (prompt "Where is your usr: directory")
  227.        (help "This is the directory where all your \n news,mail,lib,spool directories are usually kept")
  228.        (default "amitcp:usr")
  229.    )
  230. )
  231.  
  232. (set uunewsdir
  233.    (askdir
  234.        (prompt "Where is your uunews: directory")
  235.        (help "This is the directory where all your \n news articles will be stored")
  236.        (default "amitcp:usr/news")
  237.    )
  238. )
  239. (set uumaildir
  240.    (askdir
  241.        (prompt "Where is your uumail: directory")
  242.        (help "This is the directory where all your \n mail will be stored")
  243.        (default "amitcp:usr/mail")
  244.    )
  245. )
  246. (set uulibdir
  247.    (askdir
  248.        (prompt "Where is your uulib: directory")
  249.        (help "This is the directory where various files are stored/n including your newsgroup, signature, header and config files/n/n It is NOT your libs: library directory")
  250.        (default "amitcp:usr/lib")
  251.    )
  252. )
  253. (makeassign "uulib" uulibdir (SAFE))
  254. (set uuspooldir
  255.    (askdir
  256.        (prompt "Where is your uuspool: directory")
  257.        (help "This is the directory where all your \n outgoing mail, news and the incoming news batchfile \nwill be stored")
  258.        (default "amitcp:usr/spool")
  259.    )
  260. )
  261.  
  262. (set intro ("; This file contain assigns to important directories\n"))
  263. (set intro2 ("; You may need to change the from what values are set\n"))
  264. (set firststline ("path amitcp:bin add \n"))
  265. (set line1 ("assign usr: %s \n" usrdir))
  266. (set line2 ("assign uunews: %s \n" uunewsdir))
  267. (set line3 ("assign uumail: %s \n" uumaildir))
  268. (set line4 ("assign uuspool: %s \n" uuspooldir))
  269. (set line5 ("assign uulib: %s \n" uulibdir))
  270. (set line6 ("assign inet: amitcp: \n"))
  271.  
  272. (textfile
  273.    (dest "amitcp:bin/amiconnect.dos")
  274.    (append intro)
  275.    (append intro2)
  276.    (append firstline)
  277.    (append line1)
  278.    (append line2)
  279.    (append line3)
  280.    (append line4)
  281.    (append line5)
  282.    (append line6)
  283. )
  284.  
  285. (textfile
  286.    (dest "t:newsgroups")
  287.    (append "comp.sys.amiga.announce 7\n")
  288.    (append "comp.sys.amiga.misc 7\n")
  289.    (append "demon.ip.support.amiga 7\n")
  290. )
  291.  
  292. (textfile
  293.    (dest "uulib:seq")
  294.    (append "1")
  295. )
  296.  
  297. (textfile
  298.    (dest "t:tmpaliases")
  299.    (append "Postmaster: $user")
  300. )
  301.  
  302. (run "type t:tmpaliases >> uulib:aliases"
  303. )
  304.  
  305. (run "type t:newsgroups >> uulib:newsgroups"
  306. )
  307.  
  308. (message "We must now setup Amiconnect\nWe will start with your User Details"
  309. (help "You need to set up various environment variable so that Amiconnect will function correctly.\nThe following part of the installer will assist in this procedure")
  310. (safe)
  311. )
  312.  
  313. (set acemail
  314.    (askstring
  315.       (prompt "Enter Your E-Mail Address")
  316.       (help "Amiconnect needs your e-mail address to configure several options\n\nYou should enter your full address i.e. username@anyone.provider.co.uk")
  317.       (default "username@internet.provider")
  318.    )
  319. )
  320.  
  321. (textfile
  322.    (dest "env:ac!email")
  323.    (append acemail)
  324. )
  325.  
  326. (set realname
  327.    (askstring
  328.       (prompt "Enter Your Real Name")
  329.       (help "This is the name which will be sent with your mail and news messages\nIt helps people see who you really are, if you do not set this you will be known as realname")
  330.       (default "Realname")
  331.    )
  332. )
  333.  
  334. (textfile
  335.    (dest "env:realname")
  336.    (append realname)
  337. )
  338. (textfile
  339.    (dest "envarc:realname")
  340.    (append realname)
  341. )
  342.  
  343. (set home
  344.    (askdir
  345.        (prompt "Where is your home: directory?")
  346.        (help "This is the directory which many programs use to store data relevant to the current user.\n\nIt is also quite often the default directory for FTP downloads and saving WWW pages")
  347.        (default "amitcp:usr")
  348.    )
  349. )
  350. (textfile
  351.    (dest "env:ac!home")
  352.    (append home)
  353. )
  354.  
  355. (message "We now need to setup your modem details, this may be tricky, so have your modem manual handy."
  356.   (safe)
  357. )
  358.  
  359. (set serial
  360.    (askfile
  361.       (prompt "What serial device driver are you using?")
  362.       (help "This is the program that allows the Amiga to talk to the modem via your serial port.\n\nThe driver supplied with your Amiga is called serial.device but you are advised to use an improved driver such as artser.device")
  363.       (default "devs:serial.device")
  364.     )
  365. )
  366.  
  367. (textfile
  368.    (dest "env:ac!serial")
  369.    (append serial)
  370. )
  371.  
  372. (set devno
  373.    (asknumber
  374.       (prompt "What serial port number are you using?")
  375.       (help "The inbuilt serial port is 0, unless you have an additional serial ports added to your Amiga you should use this port")
  376.       (default "0")
  377.    )
  378. )
  379.  
  380. (textfile
  381.    (dest "env:ac!devno")
  382.    (append devno)
  383. )
  384.  
  385. (set bdrte
  386.    (askchoice
  387.       (prompt "What baud rate do you wish to use?")
  388.       (help "This is the rate that your Amiga communicates with the modem.\n\nIf you are using a 14400 modem use 19200 or 38400\nIf you are using a 28800 modem use 38400 or 57600\n\nPlease note a standard Amiga will not cope with rates above 57600.")
  389.       (choices "2400" "4800" "9600" "19200" "38400" "57600" "115200")
  390.       (default 3)
  391.    )
  392. )
  393. (if (= bdrte 0) (set baudrate 2400))
  394. (if (= bdrte 1) (set baudrate 4800))
  395. (if (= bdrte 2) (set baudrate 9600))
  396. (if (= bdrte 3) (set baudrate 19200))
  397. (if (= bdrte 4) (set baudrate 38400))
  398. (if (= bdrte 5) (set baudrate 57600))
  399. (if (= bdrte 6) (set baudrate 115200))
  400. (textfile
  401.    (dest "env:ac!baudrate")
  402.    (append baudrate)
  403. )
  404.  
  405. (set slip
  406.    (askchoice
  407.       (prompt "What protocol do you wish to \nuse to connect to the net?")
  408.       (help "This is the tcp/ip protocol that you will use to interact with internet, the three main protocols are\n\nSLIP - Serial Line Internet Protocol\nCSLIP as above with compression\nPPP - Point to Point Protocol")
  409.       (choices "SLIP" "CSLIP" "PPP")
  410.       (default 1)
  411.    )
  412. )
  413.  
  414. (if (= slip 0) (set slipdev "SLIP"))
  415. (if (= slip 1) (set slipdev "CSLIP"))
  416. (if (= slip 2) (set slipdev "PPP"))
  417.  
  418. (textfile
  419.    (dest "env:ac!slipdev")
  420.    (append slipdev)
  421. )
  422.  
  423. (set init
  424.    (askstring
  425.       (prompt "Enter Modem Initialisation String")
  426.       (help "This is the command you send to you modem to reset/initialise it.\n This is nearly always ATZ")
  427.       (default "ATZ")
  428.    )
  429. )
  430.  
  431. (textfile
  432.    (dest "env:ac!init")
  433.    (append init)
  434. )
  435.  
  436. (set dial
  437.    (askstring
  438.       (prompt "Enter Your Modems Dial Command")
  439.       (help "This will depend on whether you are connected to a pulse dial exchange or a tone dial compatable exchange\nMost modern exchanges are tone dial and the usual command is ATDT, for pulse dial it is usually ATDP.")
  440.       (default "ATDT")
  441.    )
  442. )
  443.  
  444. (textfile
  445.    (dest "env:ac!dial")
  446.    (append dial)
  447. )
  448.  
  449. (set helpdtr "The DTR (Data Terminal Ready) signal tells the modem to drop the call once all data has stopped.\n As amiconnect needs to stop data transmission while it switches from the serial device to the network (slip/ppp) driver, we need to overide")
  450. (set helpdtr2 "this signal.\n\n On a USRobotics Sportster modem this command is AT&d0")
  451.  
  452. (set helpdtrt
  453.   (cat helpdtr helpdtr2)
  454. )
  455.  
  456. (set dtr_on
  457.    (askstring
  458.       (prompt "Enter the command to\noveride DTR (Data Terminal Ready)")
  459.       (help helpdtrt)
  460.       (default "AT&d0")
  461.     )
  462. )
  463.  
  464. (textfile
  465.    (dest "env:ac!dtr_on")
  466.    (append dtr_on)
  467. )
  468.  
  469. (set dtr_off
  470.    (askstring
  471.       (prompt "Enter the command to disable\n the DTR (Data Terminal Ready) overide")
  472.       (help "This is the command which resets the DTR (Data Terminal Ready) overide to off.\n\nFor a USRobotics Sportster this is AT&d2")
  473.       (default "AT&d2")
  474.     )
  475. )
  476.  
  477. (textfile
  478.    (dest "env:ac!dtr_off")
  479.    (append dtr_off)
  480. )
  481.  
  482. (set hang
  483.    (askstring
  484.       (prompt "Enter the command to hang up the modem")
  485.       (help "This command is needed to disconnect your modem call to your service provider, failure to set this correctly could lead to a very large telephone bill!\n\nThe usual command is ATH")
  486.       (default "ATH")
  487.    )
  488. )
  489.  
  490. (textfile
  491.    (dest "env:ac!hang")
  492.    (append hang)
  493. )
  494.  
  495. (set cmd
  496.    (askstring
  497.       (prompt "What is the escape code to return your modem to command mode?")
  498.       (help "This command is needed to switch your modem into its command mode in the middle of data transmission. It is referred to commonly as the escape code.\n\nOn USRobotics Sportster Modems it is +++")
  499.       (default "+++")
  500.    )
  501. )
  502.  
  503. (textfile
  504.    (dest "env:AC!cmd")
  505.    (append cmd)
  506. )
  507.  
  508. (set dte1 "This is probably the most problematic command to enter.\n In manuals it may be referred to as the DTE Rate, Terminal to Modem, serial port rate or simply Data Rate.")
  509. (set dte2 "\nYou need to set this command so that the data rate is fixed.\n\n On a USRobotics Sportster the command is at&b1\n\nOn some other modems the command is /n")
  510.  
  511. (set dtehelp
  512.   (cat dte1 dte2)
  513. )
  514.  
  515. (set datarate
  516.    (askstring
  517.       (prompt "Enter the command to set the serial port data rate (DTE)")
  518.       (help dtehelp)
  519.       (default "AT&b1")
  520.    )
  521. )
  522.  
  523. (textfile
  524.    (dest "env:ac!datarate")
  525.    (append datarate)
  526. )
  527.  
  528. (set ok
  529.    (askstring
  530.       (prompt "What string does your modem return when a command has been completed successfully?")
  531.       (help "This is usually OK.\n\nIf this isn't set correctly Amiconnect will not know whether your modem has completed what it has been asked to do")
  532.       (default "OK")
  533.    )
  534. )
  535.  
  536. (textfile
  537.    (dest "env:ac!ok")
  538.    (append ok)
  539. )
  540. (message "We now need to enter details about your service provider"
  541. (SAFE)
  542. )
  543.  
  544. (set ip1 "This is the number which you will be given when you open your internet")
  545. (set ip2 "account (unless you have dynamic access), it is in the form of 4 numbers")
  546. (set ip3 "such as ???.???.???.???\n\nIf you have dynamic access and are using PPP")
  547. (set ip4 "please use 0.0.0.0 as your ip number")
  548.  
  549. (set iphelp
  550.   (cat ip1 ip2 ip3 ip4)
  551. )
  552.  
  553. (set ipno
  554.    (askstring
  555.       (prompt "Enter Your IP Number")
  556.       (help iphelp)
  557.       (default "0.0.0.0")
  558.    )
  559. )
  560.  
  561. (textfile
  562.    (dest "env:ac!ipno")
  563.    (append ipno)
  564. )
  565.  
  566.  
  567. (set gate
  568.    (askstring
  569.       (prompt "Enter your providers IP number")
  570.       (help "This is the numeric IP address of your internet providers main computer that you logon to, often called the gateway address.")
  571.       (default "???.???.???.???")
  572.    )
  573. )
  574.  
  575. (textfile
  576.    (dest "env:ac!gate")
  577.    (append gate)
  578. )
  579.  
  580. (set mailserver
  581.    (askstring
  582.       (prompt "Enter the address of your providers mailserver")
  583.       (help "The mailserver is the computer which stores your email, you need to enter this address inorder to collect mail.\nIt is often called post.provider.name, gpo.provider.name or mail.provider.name")
  584.       (default "post.provider.name")
  585.    )
  586. )
  587.  
  588. (textfile
  589.    (dest "env:ac!mailserver")
  590.    (append mailserver)
  591. )
  592.  
  593. (set newsserver
  594.    (askstring
  595.       (prompt "Enter the address of your providers news server")
  596.       (help "The news server is the computer which stores usenet news, you need to enter this if you wish to download news.\n This is commonly news.provider.name.")
  597.       (default "news.provider.name")
  598.    )
  599. )
  600.  
  601. (textfile
  602.    (dest "env:ac!newsserver")
  603.    (append newsserver)
  604. )
  605.  
  606. (set pop1
  607.    (askstring
  608.       (prompt "Enter the name of your main pop")
  609.       (help "This is essential if your are using Control Panel.\n  It is suggested that you enter the location of the main pop here such as London.")
  610.       (default "Yourtown")
  611.    )
  612. )
  613.  
  614. (textfile
  615.    (dest "env:ac!pop1")
  616.    (append pop1)
  617. )
  618.  
  619. (set phone1
  620.    (askstring
  621.       (prompt "Enter the phone number of your main pop")
  622.       (help "Enter the phone number you usually dial to connect your computer to the internet")
  623.       (default "01234 5678")
  624.    )
  625. )
  626.  
  627. (textfile
  628.    (dest "env:ac!phone1")
  629.    (append phone1)
  630. )
  631.  
  632. (set pop2
  633.    (askstring
  634.       (prompt "Enter the name of your backup pop")
  635.       (help "This is essential if your are using Control Panel.\nMany providers have additional pops which you may use when your pop is down or engaged, if so enter your second choice of pop here.")
  636.       (default "Yourtown")
  637.    )
  638. )
  639.  
  640. (textfile
  641.    (dest "env:ac!pop2")
  642.    (append pop2)
  643. )
  644.  
  645. (set phone2
  646.    (askstring
  647.       (prompt "Enter the phone number of your backup pop")
  648.       (help "Enter the phone number you dial if your first pop is unable to connect your computer to the internet")
  649.       (default "01234 5678")
  650.    )
  651. )
  652.  
  653. (textfile
  654.    (dest "env:ac!phone2")
  655.    (append phone2)
  656. )
  657.  
  658.  
  659. (set login1 "The standard login procedure will cope with most service providers. If your login procedure is similar to that below please use the standard procedure, otherwise you will need to use the advanced login")
  660. (set login2 "\n\nSystem sends login/username prompt, you reply with username\nThe system then sends password prompt, you reply with your password\nThe system then asks what protocol you are using (slip or PPP), you reply either slip or ppp\n")
  661. (set login3 "you are then logged on and on the net.\n\n the actual prompts can be changed but they need to be in the above order and shouldn't have any additional requests for information\n\n")
  662. (set login4 "The advanced login requires you to enter quite a bit of data, so it is advised that if unsure you try the standard login first and then if that fails use the advanced login script to attempt to setup the advanced login.")
  663.  
  664. (set loginhelp
  665.    (cat login1 login2 login3 login4)
  666. )
  667.  
  668. (set logintype
  669.    (askbool
  670.       (prompt "Do you want to use the standard or advanced login procedure?\n\n(Please see help for more details)")
  671.       (help loginhelp)
  672.       (choices "Standard Login" "Advanced Login")
  673.       (default 1)
  674.    )
  675. )
  676.  
  677. (if (= logintype 1)
  678.     ;Standard login clauses
  679.    (
  680.       (set acprompt
  681.          (askstring
  682.             (prompt "Enter login prompt")
  683.             (help "This is the initial prompt which is usually Login: or User:\nIt is often advisable to miss off the first character so login: would be ogin:")
  684.             (default "ogin:")
  685.          )
  686.       )
  687.       (textfile
  688.          (dest "env:ac!prompt")
  689.          (append acprompt)
  690.       )
  691.       (set loginname
  692.          (askstring
  693.             (prompt "Enter your response to the login prompt")
  694.             (help "This is usually your username or your nodename")
  695.             (default "username")
  696.          )
  697.       )
  698.       (textfile
  699.          (dest "env:ac!loginname")
  700.          (append loginname)
  701.       )
  702.       (set passprompt
  703.          (askstring
  704.             (prompt "Enter the prompt that requests your password")
  705.             (help "What text is displayed just before you usually enter your password?\nThis is usually pass: or password:")
  706.             (default "assword:")
  707.          )
  708.       )
  709.       (textfile
  710.          (dest "env:ac!passprompt")
  711.          (append passprompt)
  712.       )
  713.       (set password
  714.          (askstring
  715.             (prompt "Enter your password")
  716.             (help "What do you type when asked for your password")
  717.             (default "********")
  718.          )
  719.       )
  720.       (textfile
  721.          (dest "env:ac!password")
  722.          (append password)
  723.       )
  724.       (set protocol
  725.          (askstring
  726.             (prompt "Enter the protocol prompt")
  727.             (help "This is the prompt that asks what protocol you are using.\nAmiconnect will reply to this prompt with either slip or ppp depending on how you set up the modem details")
  728.             (default "rotocol:")
  729.          )
  730.       )
  731.       (textfile
  732.          (dest "env:ac!protocol")
  733.          (append protocol)
  734.       )
  735.    )
  736.  
  737.    (
  738.  
  739.       (set sendcmd "#")
  740.  
  741.       (textfile
  742.          (dest "amitcp:db/aclogonscript")
  743.       )
  744.  
  745.       (until (= sendcmd "\0")
  746.         (
  747.          (set rcvcmd
  748.             (askstring
  749.                (prompt "Enter Prompt\n\n(leave blank to exit dialscript editor")
  750.                (help "Enter the text which your internet provider has sent for you to reply to, e.g. login:")
  751.             )
  752.          )
  753.  
  754.          (set sendcmd
  755.             (askstring
  756.                (prompt "Enter Response To Prompt - " rcvcmd " \n\n(leave blank to exit dialscript editor)")
  757.                (help "Enter the text which you send after receiving the prompt mentioned in previous data entry box")
  758.             )
  759.          )
  760.          (debug rcvcmd sendcmd)
  761.  
  762.          (if (and (= rcvcmd "\0") (= sendcmd "\0"))
  763.  
  764.                  (set fred "fred")
  765.  
  766.                  (
  767.                    (textfile
  768.                      (dest "t:dialtest")
  769.                      (append rcvcmd)
  770.                      (append "\n")
  771.                      (append sendcmd)
  772.                      (append "\n")
  773.                    )
  774.                    (run "type t:dialtest >> amitcp:db/aclogonscript")
  775.                  )
  776.  
  777.          )
  778.         )
  779.      )
  780.  
  781.    )
  782. )
  783.  
  784. (run "copy env:ac!#? envarc:")
  785. (run "copy env:realname envarc:")
  786.  
  787. (copyfiles
  788.   (prompt "Your mail or news program may \nrequire a file called uulib:config.\nAn example is included in the \nlib directory of this archive.\n\nDo You wish to install this file?")
  789.   (help @copyfiles-help)
  790.   (source "lib/config")
  791.   (dest "uulib:")
  792.   (confirm)
  793. )
  794.  
  795. (set editconfig
  796.    (askbool
  797.       (prompt "Do you wish to edit uulib:config")
  798.       (help "If you installed the uulib:config file using the previous requester, you will now need to edit it, or you will have BIG problems")
  799.    )
  800. )
  801.  
  802. (if (= editconfig 1)
  803.  
  804.       (run "ed uulib:config")
  805.  
  806. )
  807.  
  808. (message "Installation complete, you're on your own now")
  809.